home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr40 / x1j4_src.zip / ZIPUP.BAT < prev   
DOS Batch File  |  1993-09-18  |  384b  |  15 lines

  1. @echo off
  2. rem
  3. rem THENET X-1J ZIP FILE UPDATE / CREATE
  4. rem
  5. rem this batch file is used to update the archive.
  6. rem It will create it if it does not exist and
  7. rem will update it if it does, where files have changed.
  8. rem
  9. if EXIST thenet.zip goto update
  10. pkzip -Pa thenet @ziplist
  11. goto end
  12. :update
  13. pkzip -Pi thenet @ziplist
  14. :end
  15.